Package-level declarations

Types

Link copied to clipboard

Friend verification type.

Link copied to clipboard
enum Gender : Enum<Gender>

Gender.

Link copied to clipboard
data class LoginState(val loginStatus: StateFlow<LoginStatus>, val loginUserInfo: StateFlow<UserProfile?>)

Login state

Link copied to clipboard

Login status.

Link copied to clipboard
abstract class LoginStore

Login related interfaces, managing user login, logout, user information settings and other operations.

Link copied to clipboard
data class UserProfile(var userID: String = "", var nickname: String? = null, var avatarURL: String? = null, var selfSignature: String? = null, var gender: Gender? = null, var role: Int? = null, var level: Int? = null, var birthday: Long? = null, var allowType: AllowType? = null, var customInfo: Map<String, ByteArray>? = null) : Parcelable

User profile